Replicated code from Jenny Trickey’s repo here
Summaries generated: 2025 Jun 02 17:36 UTC
Load needed libraries.
# load all libraries
devtools::install_github('taikisan21/PAMpal')
library(PAMpal)
# library(kableExtra) # known bug with R ver 4.3.0 so install from github
devtools::install_github('kupietz/kableExtra')
library(kableExtra)
library(ggplot2)
library(RSQLite)
library(tuneR)
# library(wesanderson)
library(here)
library(DBI)
# I don't think we need these but saving here in case
library(dplyr)
# library(tcltk)
# library(manipulate)
Set user-defined variables.
# name project
# ProjID <- 'MHI UxS Glider Project'
# combine trip, recorder, pg version (all defined in YAML) to single run string
# dbFileStr <- paste0(params$mission, '_', params$drift, '_Kogia_', params$pgver)
# define subfolder paths based on selected analysis folder and trip strings
# path_to_db <- file.path(params$path_pg, 'Database')
# path_to_binaries <- file.path(params$path_pg, 'Binaries', params$drift)
path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main binaries folder")
# assemble some file names
# pamguard database
# dbFile <- file.path(path_to_db, paste0(dbFileStr, '.sqlite3'))
dbFile <- file.choose()
# dbFile <- choose.files(default = "", caption = "Select database file", multi = FALSE)
# already processed acoustic study 'dets' file
detsFile <- file.path(params$path_dets, paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_Filtered.rdata'))
detsFiltFile <- file.path(params$path_dets,
paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_', params$channelStr, '.rdata'))
# specify calibration file
# calFile <- params$calFile # pull from YAML
# set path to reference spectra if will be used
path_to_refSpec <- file.path(params$path_to_refSpec) # pull from YAML
# specify which reference spectra to plot
# refSpecList = c('Gm', 'Pc')
refSpecList <- params$refSpecList # pull from YAML
refSpecSp <- params$refSpecSp
# ALTERNATIVE SELECT PATHS
# path_pg <- choose.dir(default = "", caption = "Select path to pamguard folder that contains databases and binaries folders")
# # select path to database files
# path_to_db <- choose.dir(default = "", caption = "Select path to folder with all database files")
# # select path to specific binary drift file
# path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main folder")
# # set up datebase driver
# sqlite <- dbDriver("SQLite") # outdated/no longer supported
# connect to SQLite database using the newer method
con <- dbConnect(RSQLite::SQLite(), dbname = dbFile)
#Set time zone to UTC
Sys.setenv(TZ = 'UTC')
# reference spectra colors - allows for up to 6 ref specs
# pastel
# rsPalette <- c('#66c2a5', '#fc8d62', '#8da0cb', '#e78ac3',
# '#a6d854', '#ffd92f')
# bold
rsPalette <- c('#1b9e77', '#d95f02', '#7570b3', '#e7298a',
'#66a61e', '#e6ab02')
Source some external functions
source(here::here('_code/functions', 'loadMultiBinaries.R'))
source(here::here('_code/functions', 'plotContours.R'))
source(here::here('_code/functions', 'clickSummary.R'))
source(here::here('_code/functions', 'whistleSummary.R'))
# if not using Rproj/here package use:
# source(file.path(params$path_code, 'R', 'functions', 'loadMultiBinaries.R'))
If already created, load an existing dets PAMpal
AcousticStudy object for event processing. We need to load both the
unfiltered dets and filtered detsFilt
AcousticStudies.
# load existing dets AcousticStudy (created with
# workflow_generate_acousticStudies.R)
# load(detFile)
if (file.exists(detsFile)){
dets <- readRDS(detsFile)
cat('Loaded', detsFile, '\n')
} else {
cat('No AcousticStudy \'dets\' file available', '\n')
}
## Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_006/CalCurCEAS_2024_006_Filtered.rdata
if (file.exists(detsFiltFile)){
detsFilt <- readRDS(detsFiltFile)
cat('Loaded', detsFiltFile, '\n')
} else {
cat('No AcousticStudy \'detsFilt\' file available', '\n')
}
## Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_006/CalCurCEAS_2024_006_ch1.rdata
# summarize how many events
nEvents <- length(names(PAMpal::events(dets)))
# number of events may change after filtering (all clicks may be filtered out)
nEventsFilt <- length(names(PAMpal::events(detsFilt)))
Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_006/CalCurCEAS_2024_006_Filtered.rdata and Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_006/CalCurCEAS_2024_006_ch1.rdata
## Updated the locations of 1 out of 1 missing database files.
## Updated the locations of 7960 out of 7960 missing binary files.
## Updating files in events...
## | | | 0% | |= | 0% | |= | 1% | |== | 1% | |== | 2% | |=== | 2% | |=== | 3% | |==== | 3% | |==== | 4% | |===== | 4% | |====== | 5% | |======= | 5% | |======= | 6% | |======== | 6% | |======== | 7% | |========= | 7% | |========= | 8% | |========== | 8% | |========== | 9% | |=========== | 9% | |============ | 9% | |============ | 10% | |============= | 10% | |============= | 11% | |============== | 11% | |============== | 12% | |=============== | 12% | |=============== | 13% | |================ | 13% | |================= | 14% | |================== | 14% | |================== | 15% | |=================== | 15% | |=================== | 16% | |==================== | 16% | |==================== | 17% | |===================== | 17% | |===================== | 18% | |====================== | 18% | |======================= | 18% | |======================= | 19% | |======================== | 19% | |======================== | 20% | |========================= | 20% | |========================= | 21% | |========================== | 21% | |========================== | 22% | |=========================== | 22% | |=========================== | 23% | |============================ | 23% | |============================= | 23% | |============================= | 24% | |============================== | 24% | |============================== | 25% | |=============================== | 25% | |=============================== | 26% | |================================ | 26% | |================================ | 27% | |================================= | 27% | |================================== | 28% | |=================================== | 28% | |=================================== | 29% | |==================================== | 29% | |==================================== | 30% | |===================================== | 30% | |===================================== | 31% | |====================================== | 31% | |====================================== | 32% | |======================================= | 32% | |======================================== | 32% | |======================================== | 33% | |========================================= | 33% | |========================================= | 34% | |========================================== | 34% | |========================================== | 35% | |=========================================== | 35% | |=========================================== | 36% | |============================================ | 36% | |============================================= | 36% | |============================================= | 37% | |============================================== | 37% | |============================================== | 38% | |=============================================== | 38% | |=============================================== | 39% | |================================================ | 39% | |================================================ | 40% | |================================================= | 40% | |================================================= | 41% | |================================================== | 41% | |=================================================== | 41% | |=================================================== | 42% | |==================================================== | 42% | |==================================================== | 43% | |===================================================== | 43% | |===================================================== | 44% | |====================================================== | 44% | |====================================================== | 45% | |======================================================= | 45% | |======================================================== | 46% | |========================================================= | 46% | |========================================================= | 47% | |========================================================== | 47% | |========================================================== | 48% | |=========================================================== | 48% | |=========================================================== | 49% | |============================================================ | 49% | |============================================================ | 50% | |============================================================= | 50% | |============================================================== | 50% | |============================================================== | 51% | |=============================================================== | 51% | |=============================================================== | 52% | |================================================================ | 52% | |================================================================ | 53% | |================================================================= | 53% | |================================================================= | 54% | |================================================================== | 54% | |=================================================================== | 55% | |==================================================================== | 55% | |==================================================================== | 56% | |===================================================================== | 56% | |===================================================================== | 57% | |====================================================================== | 57% | |====================================================================== | 58% | |======================================================================= | 58% | |======================================================================= | 59% | |======================================================================== | 59% | |========================================================================= | 59% | |========================================================================= | 60% | |========================================================================== | 60% | |========================================================================== | 61% | |=========================================================================== | 61% | |=========================================================================== | 62% | |============================================================================ | 62% | |============================================================================ | 63% | |============================================================================= | 63% | |============================================================================= | 64% | |============================================================================== | 64% | |=============================================================================== | 64% | |=============================================================================== | 65% | |================================================================================ | 65% | |================================================================================ | 66% | |================================================================================= | 66% | |================================================================================= | 67% | |================================================================================== | 67% | |================================================================================== | 68% | |=================================================================================== | 68% | |==================================================================================== | 68% | |==================================================================================== | 69% | |===================================================================================== | 69% | |===================================================================================== | 70% | |====================================================================================== | 70% | |====================================================================================== | 71% | |======================================================================================= | 71% | |======================================================================================= | 72% | |======================================================================================== | 72% | |========================================================================================= | 73% | |========================================================================================== | 73% | |========================================================================================== | 74% | |=========================================================================================== | 74% | |=========================================================================================== | 75% | |============================================================================================ | 75% | |============================================================================================ | 76% | |============================================================================================= | 76% | |============================================================================================= | 77% | |============================================================================================== | 77% | |=============================================================================================== | 77% | |=============================================================================================== | 78% | |================================================================================================ | 78% | |================================================================================================ | 79% | |================================================================================================= | 79% | |================================================================================================= | 80% | |================================================================================================== | 80% | |================================================================================================== | 81% | |=================================================================================================== | 81% | |=================================================================================================== | 82% | |==================================================================================================== | 82% | |===================================================================================================== | 82% | |===================================================================================================== | 83% | |====================================================================================================== | 83% | |====================================================================================================== | 84% | |======================================================================================================= | 84% | |======================================================================================================= | 85% | |======================================================================================================== | 85% | |======================================================================================================== | 86% | |========================================================================================================= | 86% | |========================================================================================================== | 87% | |=========================================================================================================== | 87% | |=========================================================================================================== | 88% | |============================================================================================================ | 88% | |============================================================================================================ | 89% | |============================================================================================================= | 89% | |============================================================================================================= | 90% | |============================================================================================================== | 90% | |============================================================================================================== | 91% | |=============================================================================================================== | 91% | |================================================================================================================ | 91% | |================================================================================================================ | 92% | |================================================================================================================= | 92% | |================================================================================================================= | 93% | |================================================================================================================== | 93% | |================================================================================================================== | 94% | |=================================================================================================================== | 94% | |=================================================================================================================== | 95% | |==================================================================================================================== | 95% | |===================================================================================================================== | 96% | |====================================================================================================================== | 96% | |====================================================================================================================== | 97% | |======================================================================================================================= | 97% | |======================================================================================================================= | 98% | |======================================================================================================================== | 98% | |======================================================================================================================== | 99% | |========================================================================================================================= | 99% | |========================================================================================================================= | 100% | |==========================================================================================================================| 100%
## Updated the locations of 1 out of 1 missing database files.
## Updated the locations of 7960 out of 7960 missing binary files.
## Updating files in events...
## | | | 0% | |= | 0% | |= | 1% | |== | 1% | |== | 2% | |=== | 2% | |=== | 3% | |==== | 3% | |==== | 4% | |===== | 4% | |====== | 5% | |======= | 5% | |======= | 6% | |======== | 6% | |======== | 7% | |========= | 7% | |========= | 8% | |========== | 8% | |========== | 9% | |=========== | 9% | |============ | 9% | |============ | 10% | |============= | 10% | |============= | 11% | |============== | 11% | |============== | 12% | |=============== | 12% | |=============== | 13% | |================ | 13% | |================= | 14% | |================== | 14% | |================== | 15% | |=================== | 15% | |=================== | 16% | |==================== | 16% | |==================== | 17% | |===================== | 17% | |===================== | 18% | |====================== | 18% | |======================= | 18% | |======================= | 19% | |======================== | 19% | |======================== | 20% | |========================= | 20% | |========================= | 21% | |========================== | 21% | |========================== | 22% | |=========================== | 22% | |=========================== | 23% | |============================ | 23% | |============================= | 23% | |============================= | 24% | |============================== | 24% | |============================== | 25% | |=============================== | 25% | |=============================== | 26% | |================================ | 26% | |================================ | 27% | |================================= | 27% | |================================== | 28% | |=================================== | 28% | |=================================== | 29% | |==================================== | 29% | |==================================== | 30% | |===================================== | 30% | |===================================== | 31% | |====================================== | 31% | |====================================== | 32% | |======================================= | 32% | |======================================== | 32% | |======================================== | 33% | |========================================= | 33% | |========================================= | 34% | |========================================== | 34% | |========================================== | 35% | |=========================================== | 35% | |=========================================== | 36% | |============================================ | 36% | |============================================= | 36% | |============================================= | 37% | |============================================== | 37% | |============================================== | 38% | |=============================================== | 38% | |=============================================== | 39% | |================================================ | 39% | |================================================ | 40% | |================================================= | 40% | |================================================= | 41% | |================================================== | 41% | |=================================================== | 41% | |=================================================== | 42% | |==================================================== | 42% | |==================================================== | 43% | |===================================================== | 43% | |===================================================== | 44% | |====================================================== | 44% | |====================================================== | 45% | |======================================================= | 45% | |======================================================== | 46% | |========================================================= | 46% | |========================================================= | 47% | |========================================================== | 47% | |========================================================== | 48% | |=========================================================== | 48% | |=========================================================== | 49% | |============================================================ | 49% | |============================================================ | 50% | |============================================================= | 50% | |============================================================== | 50% | |============================================================== | 51% | |=============================================================== | 51% | |=============================================================== | 52% | |================================================================ | 52% | |================================================================ | 53% | |================================================================= | 53% | |================================================================= | 54% | |================================================================== | 54% | |=================================================================== | 55% | |==================================================================== | 55% | |==================================================================== | 56% | |===================================================================== | 56% | |===================================================================== | 57% | |====================================================================== | 57% | |====================================================================== | 58% | |======================================================================= | 58% | |======================================================================= | 59% | |======================================================================== | 59% | |========================================================================= | 59% | |========================================================================= | 60% | |========================================================================== | 60% | |========================================================================== | 61% | |=========================================================================== | 61% | |=========================================================================== | 62% | |============================================================================ | 62% | |============================================================================ | 63% | |============================================================================= | 63% | |============================================================================= | 64% | |============================================================================== | 64% | |=============================================================================== | 64% | |=============================================================================== | 65% | |================================================================================ | 65% | |================================================================================ | 66% | |================================================================================= | 66% | |================================================================================= | 67% | |================================================================================== | 67% | |================================================================================== | 68% | |=================================================================================== | 68% | |==================================================================================== | 68% | |==================================================================================== | 69% | |===================================================================================== | 69% | |===================================================================================== | 70% | |====================================================================================== | 70% | |====================================================================================== | 71% | |======================================================================================= | 71% | |======================================================================================= | 72% | |======================================================================================== | 72% | |========================================================================================= | 73% | |========================================================================================== | 73% | |========================================================================================== | 74% | |=========================================================================================== | 74% | |=========================================================================================== | 75% | |============================================================================================ | 75% | |============================================================================================ | 76% | |============================================================================================= | 76% | |============================================================================================= | 77% | |============================================================================================== | 77% | |=============================================================================================== | 77% | |=============================================================================================== | 78% | |================================================================================================ | 78% | |================================================================================================ | 79% | |================================================================================================= | 79% | |================================================================================================= | 80% | |================================================================================================== | 80% | |================================================================================================== | 81% | |=================================================================================================== | 81% | |=================================================================================================== | 82% | |==================================================================================================== | 82% | |===================================================================================================== | 82% | |===================================================================================================== | 83% | |====================================================================================================== | 83% | |====================================================================================================== | 84% | |======================================================================================================= | 84% | |======================================================================================================= | 85% | |======================================================================================================== | 85% | |======================================================================================================== | 86% | |========================================================================================================= | 86% | |========================================================================================================== | 87% | |=========================================================================================================== | 87% | |=========================================================================================================== | 88% | |============================================================================================================ | 88% | |============================================================================================================ | 89% | |============================================================================================================= | 89% | |============================================================================================================= | 90% | |============================================================================================================== | 90% | |============================================================================================================== | 91% | |=============================================================================================================== | 91% | |================================================================================================================ | 91% | |================================================================================================================ | 92% | |================================================================================================================= | 92% | |================================================================================================================= | 93% | |================================================================================================================== | 93% | |================================================================================================================== | 94% | |=================================================================================================================== | 94% | |=================================================================================================================== | 95% | |==================================================================================================================== | 95% | |===================================================================================================================== | 96% | |====================================================================================================================== | 96% | |====================================================================================================================== | 97% | |======================================================================================================================= | 97% | |======================================================================================================================= | 98% | |======================================================================================================================== | 98% | |======================================================================================================================== | 99% | |========================================================================================================================= | 99% | |========================================================================================================================= | 100% | |==========================================================================================================================| 100%
Updated file paths to binaries in databases for Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_006/CalCurCEAS_2024_006_Filtered.rdata and Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_006/CalCurCEAS_2024_006_ch1.rdata
To be used for manual scoring based on report figures.
# set up output data frame
evTable <- data.frame(drift = character(nEvents), id = character(nEvents),
species = character(nEvents), numClicks = numeric(nEvents))
# populate with drift string and event names
evTable$drift <- paste0(params$mission, '_', params$drift)
evTable$id <- names(PAMpal::events(detsFilt))
# get all click data
allClks <- PAMpal::getClickData(detsFilt)
# get the number of clicks for each event
for (iEvent in c(1:nEventsFilt)){
evTable$numClicks[iEvent] <- length(which(allClks$eventId == evTable$id[iEvent]))
}
# keep only rows/events with at least 200 clicks
evTable <- evTable[which(evTable$numClicks >199),]
# add column for keeping/removing based on median peak frequency
evTable$keep <- FALSE # set all to false, will mark keepers as TRUE in loop
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
paste0('eventTable_', params$mission, '_',
params$drift, '_', Sys.Date(),'.csv')))
1825 events (files) in drift. 624 events have at least 200 clicks. Additional events may be removed if the median peak frequency of all high SNR clicks is less than 6 kHz. The final number of events can be found at the very end of the report.
Load the reference spectra for plotting, if set with
refSpecList.
# refSpecList is specified in YAML params. Can be one or multiple species
# for single species specify as char string without quotations e.g., refSpecPc
# for multiple species, specify with call to R and c()
# e.g., !r c('meanSpecGm', 'refSpecPc_LLHARP')
refSpecs <- NULL
if (!is.null(refSpecList)){
refSpecs = list()
for (rs in refSpecList){
refSpecs[[rs]] = read.csv(file.path(path_to_refSpec, paste0(rs, '.csv')))
}
}
Loop through each detection event (n = 624) create plots and a table of summary statistics for click and whistle detections. This process uses AcousticStudy objects that have detection data for each event, and also pulls information from the Pamguard binaries associated with each AcousticStudy.
Click plots (other than the SNR plot) only show clicks with SNRs >= 15 dB.
for (iEvent in c(1:nEventsFilt)){
# iEvent = 6 # for testing
# ("pagebreak \n")
# extract this event UID string
eventList <- PAMpal::events(detsFilt)
eventUID <- names(eventList)[iEvent]
###### summarize clicks ######
cl <- clickSummary(detsFilt, eventUID)
if ((cl$nClicks > 199) && median(cl$goodClicks$peak, na.rm = TRUE) >= 6){
# keep this in evTable
evTable$keep[evTable$id == eventUID] <- TRUE
evTable$medPeakFrq[evTable$id == eventUID] <- median(cl$goodClicks$peak,
na.rm = TRUE)
# set header for this event and print time
cat('\n\n#### Event ID: ', names(eventList)[iEvent], '\n')
cat('Time: ', format(eventList[[eventUID]]@ancillary$grouping$start,
'%Y-%m-%d %H:%M%Z'), ' to ',
format(eventList[[eventUID]]@ancillary$grouping$end, '%Y-%m-%d %H:%M%Z'),
'\n')
cat('\nEvent contains', nrow(PAMpal::getClickData(dets[[eventUID]])),
'original clicks,', paste0('**', cl$nClicks), 'valid clicks** after',
'filtering.\n')
cat('\n')
###### summarize whistles ######
# wl <- whistleSummary(detsFilt, eventUID)
#
# cat('\nEvent contains', paste0('**', wl$nWhistles), 'whistles**.\n')
# cat('\n')
###### click plots and table ######
cat('\n##### Click plots and table\n')
cat('\n SNR histogram includes all filtered clicks. Other plots contain only',
'clicks with SNR >= 15 dB', paste0('(**n = ', cl$nGoodClicks, ' clicks**)'),
'.\n')
cat('\n')
# if any clicks...
if (cl$nClicks > 0){
# histogram of all clicks and SNR >= 15 dB cut off
xMax <- max(c(15, ceiling(max(cl$snr)) + 2)) # whichever is bigger
if (any(!is.na(cl$snr))){
hist(cl$snr, breaks = seq(from = floor(min(cl$snr)),
to = xMax, by = 2),
main = 'Click SNR', sub = '(all filtered clicks)', xlab = 'SNR')
abline(v = 15, lty = 2, lwd = 2, col = 'red4')
}
}
# if sufficient good clicks...
if (cl$nGoodClicks > 0) {
# histogram of click durations - good clicks only
subStr <- paste0('(high SNR clicks, n=', cl$nGoodClicks, ')')
hist(cl$goodClicks$duration,
breaks = seq(from = 0, to = max(cl$goodClicks$duration) + 100,
by = 100), main = 'Click duration', sub = subStr,
xlab = expression(paste('duration [', mu, 's]')))
abline(v = median(cl$goodClicks$duration), lty = 2, lwd = 2, col = 'black')
legend('topright', legend = 'median', lty = 2, lwd = 2, col = 'black')
cat('\n')
cat('\n')
# Calculate and plot Concatenated and Mean Spectrum for clicks w/ max SNR > 15dB
# NB: JLKM uses more exaggerated SNR (>40 dB) for BWs bc actual spectra may
# be noisy for single clicks
# reducing wl can give more accurate noise floor but 'smoother' spectrum
# increasing wl will give more exact spectrum but may exclude too many
# clicks based on SNR (noise measure will overlap with click output; noise
# is just measured as same wl from start of binary snippet and binaries
# binary snippets are v short)
# Trial and error - 256 works ok for LLHARP data = 1.28 ms
# NB: JLKM uses 500 for beaked whales with samp rate 288k
avgSpec <- PAMpal::calculateAverageSpectra(detsFilt, evNum = eventUID, wl = 256,
channel = params$channelNum, norm = TRUE,
noise = TRUE, sort = TRUE, snr = 15,
plot = c(TRUE, FALSE))
# concatenated spectrogram will get plotted within calculation
# avg spectrum plots separately (bc adding stuff)
if (!is.null(avgSpec)) {
# Peak freq as calculated by calculateAvgerageSpectra -for subtitle
peakFreq <- round(avgSpec$freq[which.max(avgSpec$avgSpec)]/1000, 2)
plot(1, type = 'n', xlim = c(0, 100), ylim = c(min(avgSpec$avgSpec), 0),
xlab = 'Frequency (kHz)', ylab = 'Normalized Magnitude (dB)',
main = 'Average Spectrum', sub = paste0('Peak: ', peakFreq, 'kHz'))
# add grid lines for frequency at 10 kHz intervals
for (iline in ((0:20)*10)) {lines(c(iline,iline), c(-100,10), col="gray")}
# add template spectra
if (length(refSpecs) > 0){
rsCols <- rsPalette[1:length(refSpecs)]
for (rs in 1:length(refSpecs)){
rsTmp <- refSpecList[rs]
rsNorm <- refSpecs[[rsTmp]]
rsMax <- max(rsNorm$dB)
rsNorm$dBNorm <- rsNorm$dB - rsMax
lines(rsNorm$frq, rsNorm$dBNorm, col = rsCols[rs], lwd = 2)
}
}
# plot noise
lines(avgSpec$freq/1000, avgSpec$avgNoise, lty = 3, lwd = 2)
# plot avg spectrum
lines(avgSpec$freq/1000, avgSpec$avgSpec, lty = 2, lwd = 3)
# also plot median spectrum
medSpec <- 20*log10(apply(avgSpec$allSpec, 1, function(y) {
median(10^(y/20), na.rm = TRUE)}))
medSpecNorm <- medSpec - max(medSpec, na.rm = TRUE)
lines(avgSpec$freq/1000, medSpecNorm, lty = 1, lwd = 3)
# add legend
if (length(refSpecs) > 0){
legend(x = 'topright', c(refSpecSp, 'Avg.', 'Med.', 'Noise'),
lty = c(rep(1, length(refSpecs)), 2, 1, 3),
lwd = c(rep(1, length(refSpecs)), 2, 3, 2),
col = c(rsCols, 'black', 'black', 'black'), cex = 0.8)
} else if (length(refSpecs) == 0){
legend(x = 'topright', c('Avg.', 'Med.', 'Noise'),
lty = c(2, 1, 3), lwd = c(2, 3, 2),
col = c('black', 'black', 'black'), cex = 0.8)
}
}
# NB: JLKM BW approach has additional plots here:
# IPI
# Waveform of strongest click
# Wigner plot
# We are not including those here because not really useful for FKW, but if
# interested in adding back in, see:
# https://github.com/jlkeating/PAMGuard_Event_Code
cat('\n')
cat('\n')
# create median stats table for clicks with -15 dB TK noise cut off
cat('\n\n Median statistics for', cl$nGoodClicks, 'high SNR clicks with',
'SNR >= 15 dB.')
cat('\n')
cat(knitr::kable(cl$mt, format = 'html', caption = '', align = 'l',
row.names = FALSE) %>%
kableExtra::kable_styling(bootstrap_options = c('basic', 'condensed'),
full_width = F))
} else { # no good clicks so no summary plots/table
cat('\nNo clicks of sufficient SNR to plot or summarize.\n')
}
###### whistle plots and table ######
#
# cat('\n##### Whistle plots and table\n')
#
# # if whistles present ...
# if (wl$nWhistles > 0) {
# # create median stats table for all whistles
# # cat('\n\n Median statistics for', wl$nWhistles, 'whistles.')
# # cat('\n')
#
# # plot whistle contours
# # map the needed binary files
# binFiles <- dets@events[[eventUID]]@files$binaries
# wmFileIdx <- grep(pattern = '^.*WhistlesMoans_Whistle_and_Moan.*\\.pgdf$',
# binFiles)
# wmFiles <- dets@events[[eventUID]]@files$binaries[wmFileIdx]
#
# # load them
# whBin <- loadMultiBinaries(wmFiles)
# # trim to just the event time
# whBinEv <- whBin[names(whBin) %in%
# detsFilt[[eventUID]]$Whistle_and_Moan_Detector$UID]
#
# # #plot - ggplot version/functionized
# # pc <- plotContours(whBinEv)
# # # print(pc)
# # pc + ggtitle(eventUID)
# #
#
# # get plot limits
# # xMax <- 0
# # yMax <- 0
# # for (wc in 1:length(names(whBinEv))){
# # df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
# # freq = whBinEv[[wc]]$freq/1000)
# # xMaxTmp <- max(df$time)
# # yMaxTmp <- max(df$freq)
# # if (xMaxTmp > xMax){xMax <- xMaxTmp}
# # if (yMaxTmp > yMax){yMax <- yMaxTmp}
# # }
# # or use standard max lims
# xMax <- 1.5
# yMax <- 20
#
# # plot each line
# plot(1, type = 'n', xlim = c(0, round(xMax,2)), ylim = c(0, round(yMax,-1)),
# xlab = 'Time (s)', ylab = 'Frequency (kHz)',
# main = 'Whistle Contours')
# # add grid lines for frequency at 0.125 s and 5 kHz intervals
# for (iline in (seq(0,2,0.125))) {lines(c(iline,iline), c(-10,60),
# col="lightgray")}
# for (iline in (seq(0,50,5))) {lines(c(-0.5,2.5), c(iline,iline),
# col="lightgray")}
# # loop through each contour
# for (wc in 1:length(names(whBinEv))){
# df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
# freq = whBinEv[[wc]]$freq/1000)
# lines(df$time, df$freq, col = rgb(0,0,0,0.4))
# }
#
# # plot histogram of median frequency
# hist(wl$wh$freqMedian/1000,
# breaks = seq(0, ceiling(max(wl$wh$freqMedian/1000)) + 1, 1),
# main = 'Histogram of whistle median frequency',
# xlab = 'Median frequency (kHz)')
#
# cat('\n')
# cat('\n')
#
# cat('Median statistics for n = ', wl$nWhistles, 'whistles.\n')
# # create median stats table for all whistles
# cat(knitr::kable(wl$mt, format = 'html', caption = '', align = 'l',
# row.names = FALSE) %>%
# kable_styling(bootstrap_options = c('basic', 'condensed'),
# full_width = F))
#
# } else {
# cat('\nNo whistles present.\n')
# }
cat('\n')
cat('\n\n --- \n\n')
cat('\n')
}# num clicks/peak freq check
} # loop
Time: 2024-08-23 00:54UTC to 2024-08-23 01:00UTC
Event contains 2298 original clicks, 1149 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 517 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.13 |
| Median 10dB Center Frequency [kHz] | 6.65 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (5.36 - 6.98) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.68 (3.83 - 9.04) |
| Median duration [μs] (25-75 percentile) | 1243 (1000 - 1955) |
Time: 2024-08-23 06:12UTC to 2024-08-23 06:17UTC
Event contains 684 original clicks, 342 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 224 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.98 |
| Median 10dB Center Frequency [kHz] | 5.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (5.36 - 6.63) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.53 (4.62 - 7.27) |
| Median duration [μs] (25-75 percentile) | 925 (208 - 1915) |
Time: 2024-08-24 06:00UTC to 2024-08-24 06:06UTC
Event contains 1108 original clicks, 554 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 432 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.78 |
| Median 10dB Center Frequency [kHz] | 5.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.913 (5.38 - 6.29) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.52 ( 4.2 - 7.54) |
| Median duration [μs] (25-75 percentile) | 1676 (1000 - 2332) |
Time: 2024-08-24 06:06UTC to 2024-08-24 06:11UTC
Event contains 1026 original clicks, 513 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 419 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.69 |
| Median 10dB Center Frequency [kHz] | 6.42 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.875 (6.14 - 7.18) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.4 (4.66 - 7.9) |
| Median duration [μs] (25-75 percentile) | 1885 (1103 - 2364) |
Time: 2024-08-24 06:30UTC to 2024-08-24 06:35UTC
Event contains 672 original clicks, 336 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 270 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.34 |
| Median 10dB Center Frequency [kHz] | 6.02 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.962 (5.84 - 6.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.47 ( 4.5 - 7.48) |
| Median duration [μs] (25-75 percentile) | 1371 (451 - 1940) |
Time: 2024-08-24 06:48UTC to 2024-08-24 06:54UTC
Event contains 1536 original clicks, 768 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 463 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.84 |
| Median 10dB Center Frequency [kHz] | 5.78 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.19 - 6.46) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.57 (4.31 - 7.12) |
| Median duration [μs] (25-75 percentile) | 1306 (1000 - 2127) |
Time: 2024-08-24 09:24UTC to 2024-08-24 09:29UTC
Event contains 490 original clicks, 245 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 188 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 19.4 |
| Median 3dB Center Frequency [kHz] | 7.89 |
| Median 10dB Center Frequency [kHz] | 7.74 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (7.16 - 8.34) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.3 (6.02 - 9.59) |
| Median duration [μs] (25-75 percentile) | 171 (100 - 1129) |
Time: 2024-08-24 09:30UTC to 2024-08-24 09:36UTC
Event contains 636 original clicks, 318 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 226 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.8 |
| Median 3dB Center Frequency [kHz] | 5.27 |
| Median 10dB Center Frequency [kHz] | 5.32 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (4.79 - 5.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.68 (4.27 - 6.6) |
| Median duration [μs] (25-75 percentile) | 228 (48 - 1424) |
Time: 2024-08-24 10:30UTC to 2024-08-24 10:36UTC
Event contains 414 original clicks, 207 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 121 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.79 |
| Median 10dB Center Frequency [kHz] | 5.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.13 - 6.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.48 (4.41 - 7.07) |
| Median duration [μs] (25-75 percentile) | 454 (203 - 1000) |
Time: 2024-08-24 13:12UTC to 2024-08-24 13:18UTC
Event contains 1274 original clicks, 637 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 382 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.8 |
| Median 10dB Center Frequency [kHz] | 5.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.25 - 6.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.46 (4.48 - 7.2) |
| Median duration [μs] (25-75 percentile) | 1164 (487 - 1712) |
Time: 2024-08-24 13:18UTC to 2024-08-24 13:23UTC
Event contains 2642 original clicks, 1321 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 903 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.3 |
| Median 10dB Center Frequency [kHz] | 6.26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (5.71 - 6.91) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.8 (4.79 - 7.68) |
| Median duration [μs] (25-75 percentile) | 983 (330 - 1635) |
Time: 2024-08-24 13:24UTC to 2024-08-24 13:30UTC
Event contains 1502 original clicks, 751 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 509 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.6 |
| Median 10dB Center Frequency [kHz] | 6.52 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (6.02 - 7.23) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.24 (4.88 - 8.29) |
| Median duration [μs] (25-75 percentile) | 1330 (1000 - 2028) |
Time: 2024-08-24 13:30UTC to 2024-08-24 13:36UTC
Event contains 1272 original clicks, 636 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 494 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.74 |
| Median 10dB Center Frequency [kHz] | 6.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (6.11 - 7.29) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.73 (5.18 - 8.16) |
| Median duration [μs] (25-75 percentile) | 1319 (1000 - 2103) |
Time: 2024-08-24 13:36UTC to 2024-08-24 13:42UTC
Event contains 1036 original clicks, 518 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 451 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.29 |
| Median 10dB Center Frequency [kHz] | 6.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.65 - 6.99) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.93 (4.62 - 8.21) |
| Median duration [μs] (25-75 percentile) | 1588 (1043 - 2183) |
Time: 2024-08-24 14:12UTC to 2024-08-24 14:18UTC
Event contains 1212 original clicks, 606 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 540 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.12 |
| Median 10dB Center Frequency [kHz] | 6.18 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.14 - 6.91) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.26 (4.03 - 8.13) |
| Median duration [μs] (25-75 percentile) | 2200 (1340 - 2450) |
Time: 2024-08-24 14:30UTC to 2024-08-24 14:36UTC
Event contains 498 original clicks, 249 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 224 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.95 |
| Median 10dB Center Frequency [kHz] | 6.45 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.972 (5.41 - 6.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.69 (4.77 - 8.09) |
| Median duration [μs] (25-75 percentile) | 1612 (1000 - 2229) |
Time: 2024-08-24 14:36UTC to 2024-08-24 14:42UTC
Event contains 782 original clicks, 391 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 327 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.95 |
| Median 10dB Center Frequency [kHz] | 6.19 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (5.12 - 6.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.38 (4.21 - 8.4) |
| Median duration [μs] (25-75 percentile) | 1679 (1058 - 2341) |
Time: 2024-08-24 14:42UTC to 2024-08-24 14:47UTC
Event contains 772 original clicks, 386 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 336 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.2 |
| Median 3dB Center Frequency [kHz] | 6.24 |
| Median 10dB Center Frequency [kHz] | 6.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (5.45 - 7.03) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.69 (3.79 - 8.26) |
| Median duration [μs] (25-75 percentile) | 1576 (1000 - 2230) |
Time: 2024-08-24 15:12UTC to 2024-08-24 15:18UTC
Event contains 462 original clicks, 231 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 210 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.36 |
| Median 10dB Center Frequency [kHz] | 6.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (5.87 - 6.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.17 ( 4.4 - 8.35) |
| Median duration [μs] (25-75 percentile) | 1365 (1000 - 2018) |
Time: 2024-08-24 15:18UTC to 2024-08-24 15:23UTC
Event contains 424 original clicks, 212 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 196 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.26 |
| Median 10dB Center Frequency [kHz] | 6.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (5.52 - 7.12) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.43 (3.43 - 8.79) |
| Median duration [μs] (25-75 percentile) | 1333 (1000 - 1830) |
Time: 2024-08-24 15:30UTC to 2024-08-24 15:36UTC
Event contains 418 original clicks, 209 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 171 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.08 |
| Median 10dB Center Frequency [kHz] | 6.69 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.931 (6.56 - 7.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.08 (4.75 - 8.25) |
| Median duration [μs] (25-75 percentile) | 1431 (1000 - 1990) |
Time: 2024-08-24 15:36UTC to 2024-08-24 15:42UTC
Event contains 450 original clicks, 225 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 200 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.65 |
| Median 10dB Center Frequency [kHz] | 6.54 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.857 (6.19 - 7.14) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.71 (5.22 - 8.03) |
| Median duration [μs] (25-75 percentile) | 1406 (1000 - 1945) |
Time: 2024-08-24 15:42UTC to 2024-08-24 15:48UTC
Event contains 678 original clicks, 339 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 295 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.78 |
| Median 10dB Center Frequency [kHz] | 6.66 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (6.14 - 7.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.29 (4.65 - 8.37) |
| Median duration [μs] (25-75 percentile) | 1358 (1000 - 1979) |
Time: 2024-08-24 15:48UTC to 2024-08-24 15:54UTC
Event contains 672 original clicks, 336 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 309 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.93 |
| Median 10dB Center Frequency [kHz] | 6.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (6.28 - 7.63) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.25 (4.97 - 8.35) |
| Median duration [μs] (25-75 percentile) | 1155 (1000 - 1692) |
Time: 2024-08-24 16:12UTC to 2024-08-24 16:17UTC
Event contains 416 original clicks, 208 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 66 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10 |
| Median 3dB Center Frequency [kHz] | 9.4 |
| Median 10dB Center Frequency [kHz] | 9.69 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.819 (9.08 - 9.73) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.39 (8.38 - 11.1) |
| Median duration [μs] (25-75 percentile) | 30 (0 - 240) |
Time: 2024-08-24 16:30UTC to 2024-08-24 16:36UTC
Event contains 540 original clicks, 270 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 248 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.42 |
| Median 10dB Center Frequency [kHz] | 6.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (5.85 - 7.19) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.34 (4.38 - 8.01) |
| Median duration [μs] (25-75 percentile) | 1403 (1000 - 1941) |
Time: 2024-08-25 01:06UTC to 2024-08-25 01:12UTC
Event contains 550 original clicks, 275 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 100 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.2 |
| Median 3dB Center Frequency [kHz] | 9.82 |
| Median 10dB Center Frequency [kHz] | 10 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.56 (9.48 - 10.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.05 (9.16 - 10.9) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0.7) |
Time: 2024-08-25 03:18UTC to 2024-08-25 03:24UTC
Event contains 624 original clicks, 312 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 73 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.8 |
| Median 3dB Center Frequency [kHz] | 9.64 |
| Median 10dB Center Frequency [kHz] | 9.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.784 (9.18 - 9.98) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.71 ( 7.9 - 11.3) |
| Median duration [μs] (25-75 percentile) | 162 (100 - 1170) |
Time: 2024-08-25 03:24UTC to 2024-08-25 03:30UTC
Event contains 644 original clicks, 322 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 115 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.62 |
| Median 10dB Center Frequency [kHz] | 7.85 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.835 (7.27 - 8.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.4 (6.56 - 9.03) |
| Median duration [μs] (25-75 percentile) | 657 (154 - 1481) |
Time: 2024-08-25 03:30UTC to 2024-08-25 03:35UTC
Event contains 538 original clicks, 269 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 68 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.97 |
| Median 10dB Center Frequency [kHz] | 8.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.717 (8.35 - 9.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.68 (7.56 - 9.81) |
| Median duration [μs] (25-75 percentile) | 246 (7 - 1492) |
Time: 2024-08-25 03:54UTC to 2024-08-25 04:00UTC
Event contains 1172 original clicks, 586 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 298 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.87 |
| Median 10dB Center Frequency [kHz] | 5.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.995 (5.34 - 6.46) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.39 ( 4.5 - 7.12) |
| Median duration [μs] (25-75 percentile) | 740 (269 - 1202) |
Time: 2024-08-25 06:18UTC to 2024-08-25 06:24UTC
Event contains 482 original clicks, 241 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 191 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.12 |
| Median 10dB Center Frequency [kHz] | 6.03 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (5.58 - 6.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.63 (4.43 - 7.45) |
| Median duration [μs] (25-75 percentile) | 688 (233 - 1262) |
Time: 2024-08-25 06:30UTC to 2024-08-25 06:36UTC
Event contains 678 original clicks, 339 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 257 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.82 |
| Median 10dB Center Frequency [kHz] | 5.75 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.18 - 6.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.64 (4.29 - 7.09) |
| Median duration [μs] (25-75 percentile) | 806 (357 - 1499) |
Time: 2024-08-25 08:18UTC to 2024-08-25 08:24UTC
Event contains 814 original clicks, 407 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 216 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.67 |
| Median 10dB Center Frequency [kHz] | 5.81 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.08 - 6.35) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.99 (4.31 - 7.35) |
| Median duration [μs] (25-75 percentile) | 428 (121 - 1020) |
Time: 2024-08-25 08:36UTC to 2024-08-25 08:42UTC
Event contains 782 original clicks, 391 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 209 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.9 |
| Median 10dB Center Frequency [kHz] | 5.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.39 - 6.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.84 (4.52 - 7.21) |
| Median duration [μs] (25-75 percentile) | 566 (143 - 1358) |
Time: 2024-08-25 09:00UTC to 2024-08-25 09:06UTC
Event contains 652 original clicks, 326 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 210 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.82 |
| Median 10dB Center Frequency [kHz] | 5.85 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (5.21 - 6.34) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.47 (4.53 - 7.1) |
| Median duration [μs] (25-75 percentile) | 1532 (1000 - 2273) |
Time: 2024-08-25 09:24UTC to 2024-08-25 09:30UTC
Event contains 978 original clicks, 489 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 276 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.87 |
| Median 10dB Center Frequency [kHz] | 5.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1 (5.26 - 6.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.51 (4.47 - 7.08) |
| Median duration [μs] (25-75 percentile) | 1219 (1000 - 1971) |
Time: 2024-08-25 15:54UTC to 2024-08-25 16:00UTC
Event contains 520 original clicks, 260 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 74 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 14.6 |
| Median 3dB Center Frequency [kHz] | 11.3 |
| Median 10dB Center Frequency [kHz] | 11.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.654 ( 11 - 11.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.65 (10.7 - 11.9) |
| Median duration [μs] (25-75 percentile) | 124 (46 - 1000) |
Time: 2024-08-25 16:00UTC to 2024-08-25 16:06UTC
Event contains 444 original clicks, 222 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 21 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 13.6 |
| Median 3dB Center Frequency [kHz] | 12.6 |
| Median 10dB Center Frequency [kHz] | 12.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.601 (12.3 - 12.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.21 (11.7 - 13.2) |
| Median duration [μs] (25-75 percentile) | 102 (29 - 469) |
Time: 2024-08-25 16:06UTC to 2024-08-25 16:12UTC
Event contains 636 original clicks, 318 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 63 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 12.4 |
| Median 3dB Center Frequency [kHz] | 10.5 |
| Median 10dB Center Frequency [kHz] | 10.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.612 (10.2 - 10.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.29 (9.31 - 11.6) |
| Median duration [μs] (25-75 percentile) | 258 (100 - 1000) |
Time: 2024-08-25 16:12UTC to 2024-08-25 16:18UTC
Event contains 580 original clicks, 290 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 54 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 11.2 |
| Median 3dB Center Frequency [kHz] | 10.7 |
| Median 10dB Center Frequency [kHz] | 10.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.601 (10.3 - 11) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.43 ( 10 - 11.6) |
| Median duration [μs] (25-75 percentile) | 312 (100 - 1000) |
Time: 2024-08-25 16:18UTC to 2024-08-25 16:24UTC
Event contains 546 original clicks, 273 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 63 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 11.6 |
| Median 3dB Center Frequency [kHz] | 11 |
| Median 10dB Center Frequency [kHz] | 10.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.974 (9.64 - 11.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.33 (8.86 - 11.9) |
| Median duration [μs] (25-75 percentile) | 422 (113 - 1000) |
Time: 2024-08-25 16:24UTC to 2024-08-25 16:30UTC
Event contains 664 original clicks, 332 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 95 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.15 |
| Median 10dB Center Frequency [kHz] | 7.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.888 (7.72 - 8.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.64 (6.53 - 8.92) |
| Median duration [μs] (25-75 percentile) | 529 (100 - 1468) |
Time: 2024-08-25 16:30UTC to 2024-08-25 16:36UTC
Event contains 486 original clicks, 243 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 86 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.47 |
| Median 10dB Center Frequency [kHz] | 6.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.876 (6.08 - 6.97) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.09 (4.57 - 8.06) |
| Median duration [μs] (25-75 percentile) | 1091 (100 - 2042) |
Time: 2024-08-26 06:42UTC to 2024-08-26 06:48UTC
Event contains 1460 original clicks, 730 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 500 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.11 |
| Median 10dB Center Frequency [kHz] | 6.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.46 - 6.79) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.76 ( 4.5 - 7.48) |
| Median duration [μs] (25-75 percentile) | 1131 (465 - 1769) |
Time: 2024-08-26 08:54UTC to 2024-08-26 09:00UTC
Event contains 1944 original clicks, 972 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 628 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.9 |
| Median 10dB Center Frequency [kHz] | 5.85 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (5.26 - 6.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.56 (4.49 - 7.21) |
| Median duration [μs] (25-75 percentile) | 940 (473 - 1504) |
Time: 2024-08-26 09:00UTC to 2024-08-26 09:06UTC
Event contains 426 original clicks, 213 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 151 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.79 |
| Median 10dB Center Frequency [kHz] | 5.78 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (5.15 - 6.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.44 (4.49 - 7.15) |
| Median duration [μs] (25-75 percentile) | 641 (357 - 1262) |
Time: 2024-08-26 10:48UTC to 2024-08-26 10:54UTC
Event contains 426 original clicks, 213 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 150 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.01 |
| Median 10dB Center Frequency [kHz] | 5.89 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (5.52 - 6.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.35 (4.65 - 7.21) |
| Median duration [μs] (25-75 percentile) | 824 (420 - 1215) |
Time: 2024-08-26 10:54UTC to 2024-08-26 11:00UTC
Event contains 1090 original clicks, 545 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 402 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.86 |
| Median 10dB Center Frequency [kHz] | 5.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (5.21 - 6.46) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.6 (4.41 - 7.09) |
| Median duration [μs] (25-75 percentile) | 935 (446 - 1333) |
Time: 2024-08-26 11:12UTC to 2024-08-26 11:18UTC
Event contains 1778 original clicks, 889 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 603 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.93 |
| Median 10dB Center Frequency [kHz] | 5.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (5.27 - 6.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.71 (4.43 - 7.29) |
| Median duration [μs] (25-75 percentile) | 1040 (446 - 1728) |
Time: 2024-08-26 11:18UTC to 2024-08-26 11:24UTC
Event contains 2476 original clicks, 1238 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 826 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.88 |
| Median 10dB Center Frequency [kHz] | 5.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.27 - 6.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.56 (4.48 - 7.1) |
| Median duration [μs] (25-75 percentile) | 1340 (1000 - 2057) |
Time: 2024-08-26 11:24UTC to 2024-08-26 11:30UTC
Event contains 2524 original clicks, 1262 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 850 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.87 |
| Median 10dB Center Frequency [kHz] | 5.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.33 - 6.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.48 ( 4.5 - 7.03) |
| Median duration [μs] (25-75 percentile) | 1370 (1000 - 2106) |
Time: 2024-08-26 11:30UTC to 2024-08-26 11:36UTC
Event contains 2258 original clicks, 1129 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 748 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.04 |
| Median 10dB Center Frequency [kHz] | 5.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (5.39 - 6.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.61 (4.63 - 7.32) |
| Median duration [μs] (25-75 percentile) | 1281 (1000 - 2010) |
Time: 2024-08-26 11:36UTC to 2024-08-26 11:42UTC
Event contains 2496 original clicks, 1248 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 857 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.05 |
| Median 10dB Center Frequency [kHz] | 5.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (5.47 - 6.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.52 (4.61 - 7.28) |
| Median duration [μs] (25-75 percentile) | 1254 (1000 - 1911) |
Time: 2024-08-26 11:42UTC to 2024-08-26 11:48UTC
Event contains 2532 original clicks, 1266 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 876 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6 |
| Median 10dB Center Frequency [kHz] | 5.93 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.42 - 6.57) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.5 ( 4.6 - 7.25) |
| Median duration [μs] (25-75 percentile) | 1193 (1000 - 1854) |
Time: 2024-08-26 11:48UTC to 2024-08-26 11:54UTC
Event contains 2164 original clicks, 1082 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 747 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.86 |
| Median 10dB Center Frequency [kHz] | 5.78 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.25 - 6.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.64 (4.38 - 7.14) |
| Median duration [μs] (25-75 percentile) | 1530 (1000 - 2315) |
Time: 2024-08-26 13:12UTC to 2024-08-26 13:18UTC
Event contains 2312 original clicks, 1156 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 793 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.86 |
| Median 10dB Center Frequency [kHz] | 5.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.26 - 6.45) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.57 (4.47 - 7.17) |
| Median duration [μs] (25-75 percentile) | 1509 (1000 - 2200) |
Time: 2024-08-26 13:24UTC to 2024-08-26 13:30UTC
Event contains 2388 original clicks, 1194 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1022 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.23 |
| Median 10dB Center Frequency [kHz] | 6.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.957 ( 5.6 - 6.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.82 (4.64 - 8.06) |
| Median duration [μs] (25-75 percentile) | 1309 (169 - 2226) |
Time: 2024-08-26 13:30UTC to 2024-08-26 13:36UTC
Event contains 2264 original clicks, 1132 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 996 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.28 |
| Median 10dB Center Frequency [kHz] | 6.26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (5.64 - 6.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.34 (4.18 - 8.21) |
| Median duration [μs] (25-75 percentile) | 1271 (433 - 2190) |
Time: 2024-08-26 13:36UTC to 2024-08-26 13:42UTC
Event contains 1218 original clicks, 609 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 506 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.52 |
| Median 10dB Center Frequency [kHz] | 6.65 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (5.89 - 7.15) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.57 (4.39 - 8.59) |
| Median duration [μs] (25-75 percentile) | 1018 (143 - 2026) |
Time: 2024-08-26 13:42UTC to 2024-08-26 13:48UTC
Event contains 1442 original clicks, 721 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 591 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.21 |
| Median 10dB Center Frequency [kHz] | 7.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (6.67 - 7.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.34 (4.57 - 9.09) |
| Median duration [μs] (25-75 percentile) | 764 (138 - 1546) |
Time: 2024-08-26 13:48UTC to 2024-08-26 13:54UTC
Event contains 986 original clicks, 493 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 290 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.85 |
| Median 10dB Center Frequency [kHz] | 8.19 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (7.03 - 8.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.93 (5.38 - 10.2) |
| Median duration [μs] (25-75 percentile) | 317 (43 - 1053) |
Time: 2024-08-26 13:54UTC to 2024-08-26 14:00UTC
Event contains 952 original clicks, 476 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 236 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.66 |
| Median 10dB Center Frequency [kHz] | 8.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (7.76 - 9.27) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.95 (6.61 - 11.2) |
| Median duration [μs] (25-75 percentile) | 242 (5 - 1000) |
Time: 2024-08-26 14:00UTC to 2024-08-26 14:06UTC
Event contains 1654 original clicks, 827 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 496 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.48 |
| Median 10dB Center Frequency [kHz] | 8.45 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (7.77 - 9.23) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.57 (6.45 - 10.4) |
| Median duration [μs] (25-75 percentile) | 115 (0 - 1000) |
Time: 2024-08-26 14:06UTC to 2024-08-26 14:12UTC
Event contains 1608 original clicks, 804 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 583 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.78 |
| Median 10dB Center Frequency [kHz] | 6.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (5.98 - 7.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.84 (4.28 - 9.08) |
| Median duration [μs] (25-75 percentile) | 579 (100 - 1330) |
Time: 2024-08-26 14:12UTC to 2024-08-26 14:18UTC
Event contains 1350 original clicks, 675 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 544 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7 |
| Median 3dB Center Frequency [kHz] | 6.91 |
| Median 10dB Center Frequency [kHz] | 7.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (6.19 - 7.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.76 (4.83 - 9.21) |
| Median duration [μs] (25-75 percentile) | 912 (100 - 1679) |
Time: 2024-08-26 14:18UTC to 2024-08-26 14:24UTC
Event contains 1420 original clicks, 710 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 607 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.43 |
| Median 10dB Center Frequency [kHz] | 7.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (6.51 - 8.09) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.08 (4.75 - 9.45) |
| Median duration [μs] (25-75 percentile) | 941 (106 - 2009) |
Time: 2024-08-26 14:24UTC to 2024-08-26 14:30UTC
Event contains 738 original clicks, 369 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 299 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.88 |
| Median 10dB Center Frequency [kHz] | 5.89 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (5.31 - 6.41) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.17 (4.24 - 7.66) |
| Median duration [μs] (25-75 percentile) | 944 (184 - 1730) |
Time: 2024-08-26 14:42UTC to 2024-08-26 14:48UTC
Event contains 1880 original clicks, 940 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 772 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.99 |
| Median 10dB Center Frequency [kHz] | 6.28 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.989 (5.39 - 6.59) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.04 (4.31 - 7.94) |
| Median duration [μs] (25-75 percentile) | 946 (100 - 1990) |
Time: 2024-08-26 14:48UTC to 2024-08-26 14:54UTC
Event contains 1804 original clicks, 902 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 765 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.18 |
| Median 10dB Center Frequency [kHz] | 6.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.55 - 6.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.98 (4.48 - 8.34) |
| Median duration [μs] (25-75 percentile) | 1030 (342 - 1820) |
Time: 2024-08-26 14:54UTC to 2024-08-26 15:00UTC
Event contains 2060 original clicks, 1030 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 865 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.18 |
| Median 10dB Center Frequency [kHz] | 6.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (5.41 - 7.06) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.39 (4.36 - 8.33) |
| Median duration [μs] (25-75 percentile) | 1121 (339 - 2046) |
Time: 2024-08-26 15:00UTC to 2024-08-26 15:06UTC
Event contains 1948 original clicks, 974 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 817 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.24 |
| Median 10dB Center Frequency [kHz] | 7.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (6.58 - 7.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.11 (5.48 - 8.88) |
| Median duration [μs] (25-75 percentile) | 850 (318 - 1522) |
Time: 2024-08-26 15:06UTC to 2024-08-26 15:12UTC
Event contains 1812 original clicks, 906 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 760 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.11 |
| Median 10dB Center Frequency [kHz] | 6.32 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.55 - 6.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.19 (4.27 - 8.48) |
| Median duration [μs] (25-75 percentile) | 1262 (350 - 2171) |
Time: 2024-08-26 15:12UTC to 2024-08-26 15:18UTC
Event contains 1860 original clicks, 930 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 811 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.14 |
| Median 10dB Center Frequency [kHz] | 6.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (5.56 - 6.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.6 (3.99 - 8.35) |
| Median duration [μs] (25-75 percentile) | 1462 (1000 - 2222) |
Time: 2024-08-26 15:18UTC to 2024-08-26 15:24UTC
Event contains 1726 original clicks, 863 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 725 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.04 |
| Median 10dB Center Frequency [kHz] | 6.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (5.36 - 6.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.1 (4.36 - 7.88) |
| Median duration [μs] (25-75 percentile) | 1236 (383 - 2033) |
Time: 2024-08-26 15:24UTC to 2024-08-26 15:30UTC
Event contains 1788 original clicks, 894 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 719 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.93 |
| Median 10dB Center Frequency [kHz] | 6.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.978 (5.41 - 6.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.99 (4.27 - 7.73) |
| Median duration [μs] (25-75 percentile) | 1322 (1000 - 2130) |
Time: 2024-08-26 15:36UTC to 2024-08-26 15:42UTC
Event contains 1702 original clicks, 851 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 710 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.73 |
| Median 10dB Center Frequency [kHz] | 5.85 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (4.93 - 6.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.1 (3.87 - 7.52) |
| Median duration [μs] (25-75 percentile) | 1688 (1000 - 2271) |
Time: 2024-08-26 15:42UTC to 2024-08-26 15:48UTC
Event contains 1236 original clicks, 618 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 450 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.99 |
| Median 10dB Center Frequency [kHz] | 5.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (5.38 - 6.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.12 (4.16 - 7.56) |
| Median duration [μs] (25-75 percentile) | 1343 (1000 - 2159) |
Time: 2024-08-26 16:48UTC to 2024-08-26 16:54UTC
Event contains 1134 original clicks, 567 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 463 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.19 |
| Median 10dB Center Frequency [kHz] | 6.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (5.53 - 6.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.09 (4.19 - 7.88) |
| Median duration [μs] (25-75 percentile) | 1082 (441 - 1744) |
Time: 2024-08-26 17:24UTC to 2024-08-26 17:30UTC
Event contains 1232 original clicks, 616 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 514 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.38 |
| Median 10dB Center Frequency [kHz] | 6.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (5.54 - 6.99) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.69 (3.93 - 8.28) |
| Median duration [μs] (25-75 percentile) | 366 (100 - 1000) |
Time: 2024-08-26 17:30UTC to 2024-08-26 17:36UTC
Event contains 1110 original clicks, 555 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 459 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.25 |
| Median 10dB Center Frequency [kHz] | 6.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.37 (5.49 - 7.17) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.89 (4.19 - 8.45) |
| Median duration [μs] (25-75 percentile) | 216 (0 - 1000) |
Time: 2024-08-26 17:36UTC to 2024-08-26 17:42UTC
Event contains 914 original clicks, 457 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 370 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.96 |
| Median 10dB Center Frequency [kHz] | 6.23 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (5.31 - 6.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.41 ( 4.1 - 8.25) |
| Median duration [μs] (25-75 percentile) | 292 (16 - 1000) |
Time: 2024-08-26 17:48UTC to 2024-08-26 17:54UTC
Event contains 924 original clicks, 462 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 354 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.88 |
| Median 10dB Center Frequency [kHz] | 5.87 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (5.09 - 6.54) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.39 (3.99 - 8.04) |
| Median duration [μs] (25-75 percentile) | 56 (0 - 484) |
Time: 2024-08-26 17:54UTC to 2024-08-26 18:00UTC
Event contains 1170 original clicks, 585 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 478 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.84 |
| Median 10dB Center Frequency [kHz] | 6.03 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (4.94 - 6.72) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.68 (3.84 - 8.02) |
| Median duration [μs] (25-75 percentile) | 331 (100 - 1000) |
Time: 2024-08-26 18:12UTC to 2024-08-26 18:18UTC
Event contains 738 original clicks, 369 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 296 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.88 |
| Median 10dB Center Frequency [kHz] | 5.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.53 (4.83 - 6.79) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.78 (4.02 - 7.94) |
| Median duration [μs] (25-75 percentile) | 252 (0 - 1000) |
Time: 2024-08-26 18:30UTC to 2024-08-26 18:36UTC
Event contains 1188 original clicks, 594 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 476 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.16 |
| Median 10dB Center Frequency [kHz] | 6.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (5.28 - 6.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.81 (4.04 - 8.23) |
| Median duration [μs] (25-75 percentile) | 102 (0 - 1000) |
Time: 2024-08-26 18:36UTC to 2024-08-26 18:42UTC
Event contains 746 original clicks, 373 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 306 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.17 |
| Median 10dB Center Frequency [kHz] | 6.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (5.52 - 6.91) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.77 (4.19 - 8.38) |
| Median duration [μs] (25-75 percentile) | 30 (0 - 311) |
Time: 2024-08-26 18:42UTC to 2024-08-26 18:48UTC
Event contains 648 original clicks, 324 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 250 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.85 |
| Median 10dB Center Frequency [kHz] | 5.93 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (4.99 - 6.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.65 (3.45 - 8.36) |
| Median duration [μs] (25-75 percentile) | 117 (0 - 429) |
Time: 2024-08-26 19:36UTC to 2024-08-26 19:42UTC
Event contains 560 original clicks, 280 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 207 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.05 |
| Median 10dB Center Frequency [kHz] | 6.18 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (5.41 - 6.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.48 (4.02 - 8.13) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 171) |
Time: 2024-08-26 19:42UTC to 2024-08-26 19:48UTC
Event contains 646 original clicks, 323 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 227 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.43 |
| Median 10dB Center Frequency [kHz] | 6.48 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (5.79 - 6.98) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.21 (4.83 - 8.29) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 188) |
Time: 2024-08-26 21:00UTC to 2024-08-26 21:06UTC
Event contains 1158 original clicks, 579 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 467 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.83 |
| Median 10dB Center Frequency [kHz] | 5.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 ( 5.1 - 6.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.84 (3.63 - 7.91) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 378) |
Time: 2024-08-26 21:48UTC to 2024-08-26 21:54UTC
Event contains 700 original clicks, 350 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 278 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.99 |
| Median 10dB Center Frequency [kHz] | 5.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.33 - 6.63) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.19 (4.14 - 7.53) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 184) |
Time: 2024-08-27 00:00UTC to 2024-08-27 00:06UTC
Event contains 444 original clicks, 222 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 157 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.85 |
| Median 10dB Center Frequency [kHz] | 5.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (5.22 - 6.34) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.52 (3.98 - 7.77) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-27 00:12UTC to 2024-08-27 00:18UTC
Event contains 1018 original clicks, 509 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 396 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.15 |
| Median 10dB Center Frequency [kHz] | 6.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (5.59 - 7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.21 (4.17 - 7.99) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 8) |
Time: 2024-08-27 00:48UTC to 2024-08-27 00:54UTC
Event contains 400 original clicks, 200 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 164 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.74 |
| Median 10dB Center Frequency [kHz] | 5.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 (5.18 - 6.21) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.68 (3.98 - 7.73) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 166) |
Time: 2024-08-27 01:06UTC to 2024-08-27 01:12UTC
Event contains 494 original clicks, 247 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 172 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.48 |
| Median 10dB Center Frequency [kHz] | 6.47 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (5.85 - 7.01) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3 (4.73 - 7.85) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-27 01:12UTC to 2024-08-27 01:18UTC
Event contains 560 original clicks, 280 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 223 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.63 |
| Median 10dB Center Frequency [kHz] | 6.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (5.91 - 7.37) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.44 ( 4.4 - 8.25) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 245) |
Time: 2024-08-27 01:24UTC to 2024-08-27 01:30UTC
Event contains 850 original clicks, 425 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 341 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 7.02 |
| Median 10dB Center Frequency [kHz] | 6.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (6.27 - 7.77) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.59 (5.08 - 9.03) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 159) |
Time: 2024-08-27 01:30UTC to 2024-08-27 01:36UTC
Event contains 812 original clicks, 406 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 330 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.04 |
| Median 10dB Center Frequency [kHz] | 6.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (5.43 - 6.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.72 (4.25 - 7.93) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-27 01:36UTC to 2024-08-27 01:42UTC
Event contains 586 original clicks, 293 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 223 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.07 |
| Median 10dB Center Frequency [kHz] | 6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (5.16 - 6.99) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.73 (3.64 - 8.2) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 168) |
Time: 2024-08-27 01:42UTC to 2024-08-27 01:48UTC
Event contains 558 original clicks, 279 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 217 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.42 |
| Median 10dB Center Frequency [kHz] | 6.48 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (5.76 - 7.23) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.43 (4.66 - 8.21) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-27 01:48UTC to 2024-08-27 01:54UTC
Event contains 1072 original clicks, 536 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 444 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.41 |
| Median 10dB Center Frequency [kHz] | 6.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 ( 5.8 - 6.97) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.21 (4.72 - 8.2) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-27 02:18UTC to 2024-08-27 02:24UTC
Event contains 802 original clicks, 401 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 179 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.26 |
| Median 10dB Center Frequency [kHz] | 6.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (5.67 - 6.88) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.99 (4.67 - 7.71) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-27 02:24UTC to 2024-08-27 02:30UTC
Event contains 672 original clicks, 336 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 193 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.29 |
| Median 10dB Center Frequency [kHz] | 6.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (5.62 - 6.92) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.06 ( 4.8 - 8.17) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-27 02:30UTC to 2024-08-27 02:36UTC
Event contains 1060 original clicks, 530 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 390 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.4 |
| Median 10dB Center Frequency [kHz] | 6.47 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.938 (5.85 - 7.01) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.54 (5.06 - 7.87) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-27 02:36UTC to 2024-08-27 02:42UTC
Event contains 570 original clicks, 285 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 213 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.32 |
| Median 10dB Center Frequency [kHz] | 6.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (5.56 - 6.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.02 (4.53 - 7.78) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 258) |
Time: 2024-08-27 02:42UTC to 2024-08-27 02:48UTC
Event contains 522 original clicks, 261 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 192 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.65 |
| Median 10dB Center Frequency [kHz] | 6.59 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 ( 5.9 - 7.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.34 (4.75 - 8.12) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-27 03:24UTC to 2024-08-27 03:30UTC
Event contains 664 original clicks, 332 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 212 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.89 |
| Median 10dB Center Frequency [kHz] | 6.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (5.98 - 7.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.55 (4.71 - 9.09) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-27 03:30UTC to 2024-08-27 03:36UTC
Event contains 410 original clicks, 205 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 115 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.21 |
| Median 10dB Center Frequency [kHz] | 6.19 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (5.31 - 6.83) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.28 (4.37 - 8.04) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 235) |
Time: 2024-08-27 22:06UTC to 2024-08-27 22:12UTC
Event contains 790 original clicks, 395 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 268 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.06 |
| Median 10dB Center Frequency [kHz] | 6.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (5.44 - 6.67) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.93 (3.89 - 8.49) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 3) |
Time: 2024-08-27 22:12UTC to 2024-08-27 22:18UTC
Event contains 746 original clicks, 373 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 266 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.73 |
| Median 10dB Center Frequency [kHz] | 5.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.4 (4.98 - 6.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.46 (4.05 - 7.67) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 46) |
Time: 2024-08-27 22:24UTC to 2024-08-27 22:30UTC
Event contains 418 original clicks, 209 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 158 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.86 |
| Median 10dB Center Frequency [kHz] | 5.76 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (4.95 - 6.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.57 (3.65 - 8.06) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 107) |
Time: 2024-08-27 23:12UTC to 2024-08-27 23:18UTC
Event contains 534 original clicks, 267 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 191 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.93 |
| Median 10dB Center Frequency [kHz] | 6.75 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (6.27 - 7.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.02 ( 4.9 - 8.67) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-28 00:42UTC to 2024-08-28 00:48UTC
Event contains 588 original clicks, 294 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 211 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.91 |
| Median 10dB Center Frequency [kHz] | 6.26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 (5.17 - 6.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.99 (4.29 - 8.56) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 14) |
Time: 2024-08-28 01:06UTC to 2024-08-28 01:12UTC
Event contains 472 original clicks, 236 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 129 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.13 |
| Median 10dB Center Frequency [kHz] | 6.33 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 ( 5.4 - 6.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.27 ( 4.5 - 8.42) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-28 01:42UTC to 2024-08-28 01:48UTC
Event contains 988 original clicks, 494 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 412 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.87 |
| Median 10dB Center Frequency [kHz] | 7.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (6.09 - 7.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.97 (5.07 - 8.67) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 30) |
Time: 2024-08-28 01:48UTC to 2024-08-28 01:54UTC
Event contains 1060 original clicks, 530 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 427 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.21 |
| Median 10dB Center Frequency [kHz] | 7.23 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.941 (6.67 - 7.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.11 (5.42 - 8.88) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 1000) |
Time: 2024-08-28 01:54UTC to 2024-08-28 02:00UTC
Event contains 822 original clicks, 411 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 322 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.14 |
| Median 10dB Center Frequency [kHz] | 6.63 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.61 - 6.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.83 (4.38 - 8.68) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 21) |
Time: 2024-08-28 02:00UTC to 2024-08-28 02:06UTC
Event contains 726 original clicks, 363 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 301 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.25 |
| Median 10dB Center Frequency [kHz] | 7.55 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (6.49 - 8.03) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.47 (4.71 - 9.94) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-28 02:06UTC to 2024-08-28 02:12UTC
Event contains 778 original clicks, 389 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 328 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.57 |
| Median 10dB Center Frequency [kHz] | 6.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (5.82 - 7.31) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.12 ( 4.3 - 9.34) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 47) |
Time: 2024-08-28 02:12UTC to 2024-08-28 02:18UTC
Event contains 728 original clicks, 364 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 300 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.97 |
| Median 10dB Center Frequency [kHz] | 7.95 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.985 (7.49 - 8.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.32 (6.47 - 9.41) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-28 02:36UTC to 2024-08-28 02:42UTC
Event contains 860 original clicks, 430 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 330 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.28 |
| Median 10dB Center Frequency [kHz] | 7.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (7.45 - 8.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.82 (5.68 - 9.89) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-28 02:42UTC to 2024-08-28 02:48UTC
Event contains 894 original clicks, 447 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 387 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.79 |
| Median 10dB Center Frequency [kHz] | 7.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (6.15 - 7.59) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.4 (4.98 - 8.96) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-28 02:48UTC to 2024-08-28 02:54UTC
Event contains 1294 original clicks, 647 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 430 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.73 |
| Median 10dB Center Frequency [kHz] | 7.75 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (7.03 - 8.38) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.94 (5.06 - 10.1) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 109) |
Time: 2024-08-28 02:54UTC to 2024-08-28 03:00UTC
Event contains 1022 original clicks, 511 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 458 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.98 |
| Median 10dB Center Frequency [kHz] | 7.72 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (7.27 - 8.77) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.57 (4.78 - 10.4) |
| Median duration [μs] (25-75 percentile) | 1.3 (0 - 219) |
Time: 2024-08-28 03:00UTC to 2024-08-28 03:06UTC
Event contains 822 original clicks, 411 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 340 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.23 |
| Median 10dB Center Frequency [kHz] | 7.93 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (7.43 - 9.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.85 (4.71 - 10.9) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 50) |
Time: 2024-08-28 03:06UTC to 2024-08-28 03:12UTC
Event contains 980 original clicks, 490 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 332 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8 |
| Median 10dB Center Frequency [kHz] | 8.07 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (7.46 - 8.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.63 (5.83 - 9.93) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-28 03:12UTC to 2024-08-28 03:18UTC
Event contains 576 original clicks, 288 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 235 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.27 |
| Median 10dB Center Frequency [kHz] | 8.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (7.51 - 8.95) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.4 (6.51 - 9.96) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 22) |
Time: 2024-08-28 03:24UTC to 2024-08-28 03:30UTC
Event contains 446 original clicks, 223 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 183 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.5 |
| Median 10dB Center Frequency [kHz] | 7.41 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (6.82 - 8.11) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.35 (5.63 - 9.2) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-28 03:30UTC to 2024-08-28 03:36UTC
Event contains 932 original clicks, 466 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 366 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.26 |
| Median 10dB Center Frequency [kHz] | 8.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (7.72 - 8.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.19 (6.52 - 9.73) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 34) |
Time: 2024-08-28 03:36UTC to 2024-08-28 03:42UTC
Event contains 838 original clicks, 419 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 383 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.44 |
| Median 10dB Center Frequency [kHz] | 6.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.66 (4.77 - 7.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.4 ( 3.7 - 9.68) |
| Median duration [μs] (25-75 percentile) | 96 (0 - 272) |
Time: 2024-08-28 03:42UTC to 2024-08-28 03:48UTC
Event contains 682 original clicks, 341 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 256 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7 |
| Median 10dB Center Frequency [kHz] | 6.68 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (6.46 - 7.83) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.71 (4.31 - 8.95) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-28 03:48UTC to 2024-08-28 03:54UTC
Event contains 726 original clicks, 363 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 299 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.05 |
| Median 10dB Center Frequency [kHz] | 7.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 ( 7.2 - 8.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.19 (4.47 - 10) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-28 03:54UTC to 2024-08-28 04:00UTC
Event contains 680 original clicks, 340 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 260 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.5 |
| Median 10dB Center Frequency [kHz] | 6.59 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.79 - 7.07) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.2 (4.35 - 8.69) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-28 04:00UTC to 2024-08-28 04:06UTC
Event contains 890 original clicks, 445 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 364 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.35 |
| Median 10dB Center Frequency [kHz] | 7.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (6.47 - 8.27) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.79 (4.96 - 9.49) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-28 04:06UTC to 2024-08-28 04:12UTC
Event contains 688 original clicks, 344 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 268 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.75 |
| Median 10dB Center Frequency [kHz] | 7.63 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (7.08 - 8.38) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.65 (5.65 - 9.73) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-28 04:36UTC to 2024-08-28 04:42UTC
Event contains 690 original clicks, 345 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 302 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.75 |
| Median 10dB Center Frequency [kHz] | 7.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (7.06 - 8.46) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.16 (4.87 - 9.45) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-28 04:42UTC to 2024-08-28 04:48UTC
Event contains 556 original clicks, 278 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 203 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.16 |
| Median 10dB Center Frequency [kHz] | 7.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 ( 7.4 - 8.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.02 (5.55 - 10.5) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-28 04:54UTC to 2024-08-28 05:00UTC
Event contains 718 original clicks, 359 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 314 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.19 |
| Median 10dB Center Frequency [kHz] | 7.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (6.47 - 7.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.38 (5.41 - 8.91) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 201) |
Time: 2024-08-28 05:00UTC to 2024-08-28 05:06UTC
Event contains 668 original clicks, 334 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 252 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.51 |
| Median 10dB Center Frequency [kHz] | 8.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.53 (7.57 - 9.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.93 (5.79 - 10.6) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-29 05:00UTC to 2024-08-29 05:06UTC
Event contains 430 original clicks, 215 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 67 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.33 |
| Median 10dB Center Frequency [kHz] | 5.59 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.925 (5.05 - 6.09) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.61 (3.91 - 7.27) |
| Median duration [μs] (25-75 percentile) | 42 (27 - 100) |
Time: 2024-08-29 07:18UTC to 2024-08-29 07:24UTC
Event contains 636 original clicks, 318 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 215 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.04 |
| Median 10dB Center Frequency [kHz] | 5.98 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.992 (5.39 - 6.62) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.8 (4.36 - 7.57) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 07:36UTC to 2024-08-29 07:42UTC
Event contains 576 original clicks, 288 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 220 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.27 |
| Median 10dB Center Frequency [kHz] | 6.48 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.875 (5.72 - 6.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.18 (4.36 - 8.61) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 147) |
Time: 2024-08-29 07:54UTC to 2024-08-29 08:00UTC
Event contains 634 original clicks, 317 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 220 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.5 |
| Median 10dB Center Frequency [kHz] | 6.71 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (5.63 - 7.25) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.27 (4.26 - 8.98) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-29 08:00UTC to 2024-08-29 08:06UTC
Event contains 624 original clicks, 312 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 211 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.86 |
| Median 10dB Center Frequency [kHz] | 6.68 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (6.12 - 7.45) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.62 (4.23 - 9.07) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 17) |
Time: 2024-08-29 08:24UTC to 2024-08-29 08:30UTC
Event contains 542 original clicks, 271 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 156 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.39 |
| Median 10dB Center Frequency [kHz] | 6.42 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.914 (5.73 - 7.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.26 ( 4.6 - 8.2) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 08:30UTC to 2024-08-29 08:36UTC
Event contains 620 original clicks, 310 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 261 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.8 |
| Median 10dB Center Frequency [kHz] | 7.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (6.21 - 7.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.14 (4.46 - 9.38) |
| Median duration [μs] (25-75 percentile) | 23 (0 - 193) |
Time: 2024-08-29 08:36UTC to 2024-08-29 08:42UTC
Event contains 1056 original clicks, 528 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 471 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.47 |
| Median 10dB Center Frequency [kHz] | 6.58 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (5.64 - 7.26) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.59 (3.92 - 9.05) |
| Median duration [μs] (25-75 percentile) | 13 (0 - 173) |
Time: 2024-08-29 08:42UTC to 2024-08-29 08:48UTC
Event contains 888 original clicks, 444 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 323 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.47 |
| Median 10dB Center Frequency [kHz] | 7.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (6.52 - 8.26) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.49 (4.49 - 10.3) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-29 08:48UTC to 2024-08-29 08:54UTC
Event contains 1162 original clicks, 581 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 467 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.04 |
| Median 10dB Center Frequency [kHz] | 7.07 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (6.19 - 7.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.7 ( 4.3 - 9.43) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 181) |
Time: 2024-08-29 08:54UTC to 2024-08-29 09:00UTC
Event contains 812 original clicks, 406 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 343 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.82 |
| Median 10dB Center Frequency [kHz] | 7.44 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (7.19 - 8.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.05 (4.63 - 9.84) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-29 09:00UTC to 2024-08-29 09:06UTC
Event contains 680 original clicks, 340 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 251 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 7.79 |
| Median 10dB Center Frequency [kHz] | 7.65 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (7.05 - 8.28) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.54 (5.41 - 10.1) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 4) |
Time: 2024-08-29 13:30UTC to 2024-08-29 13:36UTC
Event contains 610 original clicks, 305 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 222 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.47 |
| Median 10dB Center Frequency [kHz] | 8.32 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (7.71 - 9.07) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.66 ( 6.2 - 10.1) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 48) |
Time: 2024-08-29 13:36UTC to 2024-08-29 13:42UTC
Event contains 902 original clicks, 451 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 343 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.14 |
| Median 10dB Center Frequency [kHz] | 6.95 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (6.45 - 7.74) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.13 (5.47 - 8.99) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-29 13:42UTC to 2024-08-29 13:48UTC
Event contains 740 original clicks, 370 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 327 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 8.89 |
| Median 10dB Center Frequency [kHz] | 9.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (8.27 - 9.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.19 (7.38 - 10.5) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 13:54UTC to 2024-08-29 14:00UTC
Event contains 402 original clicks, 201 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 135 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.7 |
| Median 10dB Center Frequency [kHz] | 8.55 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.47 (7.71 - 9.29) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.78 (6.17 - 11.2) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 142) |
Time: 2024-08-29 14:00UTC to 2024-08-29 14:06UTC
Event contains 478 original clicks, 239 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 162 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 9.06 |
| Median 10dB Center Frequency [kHz] | 9.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.55 (8.16 - 10) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.9 (6.37 - 12.2) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 3) |
Time: 2024-08-29 14:06UTC to 2024-08-29 14:12UTC
Event contains 442 original clicks, 221 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 154 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.76 |
| Median 10dB Center Frequency [kHz] | 8.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.68 (6.66 - 8.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.2 (3.81 - 11.7) |
| Median duration [μs] (25-75 percentile) | 21 (0 - 127) |
Time: 2024-08-29 14:12UTC to 2024-08-29 14:18UTC
Event contains 584 original clicks, 292 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 236 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.45 |
| Median 10dB Center Frequency [kHz] | 7.33 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.55 (6.75 - 8.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.09 (4.46 - 10.5) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-29 14:18UTC to 2024-08-29 14:24UTC
Event contains 666 original clicks, 333 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 225 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10 |
| Median 3dB Center Frequency [kHz] | 9.52 |
| Median 10dB Center Frequency [kHz] | 9.46 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (8.53 - 10) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.01 (6.64 - 11.9) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-29 14:48UTC to 2024-08-29 14:54UTC
Event contains 434 original clicks, 217 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 142 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.78 |
| Median 10dB Center Frequency [kHz] | 7.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (7.25 - 8.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.64 (6.03 - 9.99) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 16:54UTC to 2024-08-29 17:00UTC
Event contains 434 original clicks, 217 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 132 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.68 |
| Median 10dB Center Frequency [kHz] | 6.76 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (6.08 - 7.41) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.06 (5.28 - 8.55) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 19:00UTC to 2024-08-29 19:06UTC
Event contains 486 original clicks, 243 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 167 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.83 |
| Median 10dB Center Frequency [kHz] | 7.17 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 ( 6 - 7.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.61 ( 5.1 - 9.21) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 19:30UTC to 2024-08-29 19:36UTC
Event contains 488 original clicks, 244 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 171 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 5.92 |
| Median 10dB Center Frequency [kHz] | 6.25 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.962 (5.44 - 6.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.28 (4.56 - 8.14) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 19:36UTC to 2024-08-29 19:42UTC
Event contains 500 original clicks, 250 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 177 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.66 |
| Median 10dB Center Frequency [kHz] | 6.69 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (5.88 - 7.41) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.37 (4.13 - 8.95) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 39) |
Time: 2024-08-29 19:54UTC to 2024-08-29 20:00UTC
Event contains 428 original clicks, 214 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 145 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.1 |
| Median 10dB Center Frequency [kHz] | 7.07 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (6.24 - 7.91) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.17 (4.73 - 9.51) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 20:00UTC to 2024-08-29 20:06UTC
Event contains 646 original clicks, 323 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 216 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.21 |
| Median 10dB Center Frequency [kHz] | 7.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (6.56 - 7.96) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.41 (5.36 - 9.05) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 20:06UTC to 2024-08-29 20:12UTC
Event contains 462 original clicks, 231 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 165 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.57 |
| Median 10dB Center Frequency [kHz] | 6.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (5.57 - 7.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.81 (4.51 - 8.53) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 20:18UTC to 2024-08-29 20:24UTC
Event contains 762 original clicks, 381 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 259 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.29 |
| Median 10dB Center Frequency [kHz] | 7.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.994 (6.67 - 7.88) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.35 (5.14 - 9.17) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 20:24UTC to 2024-08-29 20:30UTC
Event contains 710 original clicks, 355 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 254 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.64 |
| Median 10dB Center Frequency [kHz] | 7.44 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (6.78 - 8.41) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.54 (5.71 - 9.41) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 20:30UTC to 2024-08-29 20:36UTC
Event contains 620 original clicks, 310 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 232 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.95 |
| Median 10dB Center Frequency [kHz] | 7.68 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (7.15 - 8.59) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.84 (5.47 - 9.87) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 21:36UTC to 2024-08-29 21:42UTC
Event contains 552 original clicks, 276 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 156 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.19 |
| Median 10dB Center Frequency [kHz] | 6.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.57 - 6.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.17 (4.61 - 8.5) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 21:48UTC to 2024-08-29 21:54UTC
Event contains 544 original clicks, 272 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 167 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.29 |
| Median 10dB Center Frequency [kHz] | 7.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (6.44 - 8.06) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.29 (4.92 - 9.59) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 10) |
Time: 2024-08-29 22:18UTC to 2024-08-29 22:24UTC
Event contains 484 original clicks, 242 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 140 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.79 |
| Median 10dB Center Frequency [kHz] | 6.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 ( 4.9 - 6.63) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.29 (3.86 - 8.61) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 3) |
Time: 2024-08-30 02:06UTC to 2024-08-30 02:12UTC
Event contains 684 original clicks, 342 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 230 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.94 |
| Median 10dB Center Frequency [kHz] | 7.75 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.65 (6.79 - 9.05) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.95 (4.88 - 10.7) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 02:12UTC to 2024-08-30 02:18UTC
Event contains 552 original clicks, 276 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 162 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.08 |
| Median 10dB Center Frequency [kHz] | 7.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 ( 6.1 - 7.99) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.87 (4.63 - 10.1) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 02:42UTC to 2024-08-30 02:48UTC
Event contains 484 original clicks, 242 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 170 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.88 |
| Median 10dB Center Frequency [kHz] | 6.53 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (5.38 - 6.46) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.7 (4.03 - 8.52) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 02:48UTC to 2024-08-30 02:54UTC
Event contains 690 original clicks, 345 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 230 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.88 |
| Median 10dB Center Frequency [kHz] | 6.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (5.93 - 7.74) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.57 ( 4.6 - 9.04) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 02:54UTC to 2024-08-30 03:00UTC
Event contains 890 original clicks, 445 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 300 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.05 |
| Median 10dB Center Frequency [kHz] | 7.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (6.35 - 7.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.87 (4.62 - 9.23) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 03:00UTC to 2024-08-30 03:06UTC
Event contains 1162 original clicks, 581 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 423 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.3 |
| Median 10dB Center Frequency [kHz] | 7.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (6.59 - 7.93) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.65 (5.21 - 9.44) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 03:06UTC to 2024-08-30 03:12UTC
Event contains 736 original clicks, 368 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 255 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.21 |
| Median 10dB Center Frequency [kHz] | 7.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (6.41 - 7.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.43 (5.22 - 9.09) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 03:12UTC to 2024-08-30 03:18UTC
Event contains 406 original clicks, 203 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 134 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.51 |
| Median 10dB Center Frequency [kHz] | 7.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (6.66 - 8.08) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.96 (5.42 - 9.9) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 03:18UTC to 2024-08-30 03:24UTC
Event contains 1226 original clicks, 613 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 442 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.78 |
| Median 10dB Center Frequency [kHz] | 6.95 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (6.08 - 7.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.6 (4.82 - 8.85) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 03:24UTC to 2024-08-30 03:30UTC
Event contains 1682 original clicks, 841 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 633 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.29 |
| Median 10dB Center Frequency [kHz] | 7.23 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (6.57 - 7.97) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.51 (5.21 - 9.16) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 03:30UTC to 2024-08-30 03:36UTC
Event contains 1438 original clicks, 719 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 537 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.18 |
| Median 10dB Center Frequency [kHz] | 7.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (6.59 - 7.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.56 (5.15 - 9.36) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 03:36UTC to 2024-08-30 03:42UTC
Event contains 2752 original clicks, 1376 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 988 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.03 |
| Median 10dB Center Frequency [kHz] | 7.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 ( 6.4 - 7.63) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.59 (4.97 - 9.11) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 03:42UTC to 2024-08-30 03:48UTC
Event contains 2868 original clicks, 1434 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1075 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.48 |
| Median 10dB Center Frequency [kHz] | 7.51 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (6.83 - 8.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.42 (5.47 - 9.43) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 03:48UTC to 2024-08-30 03:54UTC
Event contains 3854 original clicks, 1927 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1447 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.77 |
| Median 10dB Center Frequency [kHz] | 7.74 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (7.16 - 8.41) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.58 (5.72 - 9.82) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 03:54UTC to 2024-08-30 04:00UTC
Event contains 3810 original clicks, 1905 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1367 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.26 |
| Median 10dB Center Frequency [kHz] | 7.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (6.53 - 7.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.5 (5.26 - 9.17) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 04:00UTC to 2024-08-30 04:06UTC
Event contains 2870 original clicks, 1435 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1009 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.41 |
| Median 10dB Center Frequency [kHz] | 7.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (6.71 - 8.07) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.53 (5.22 - 9.3) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 04:06UTC to 2024-08-30 04:12UTC
Event contains 3028 original clicks, 1514 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1115 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.07 |
| Median 10dB Center Frequency [kHz] | 7.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (6.38 - 7.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.45 ( 5.2 - 9.2) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 04:12UTC to 2024-08-30 04:18UTC
Event contains 1666 original clicks, 833 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 621 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.83 |
| Median 10dB Center Frequency [kHz] | 7.83 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (7.15 - 8.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.35 (5.74 - 9.68) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 04:18UTC to 2024-08-30 04:24UTC
Event contains 1160 original clicks, 580 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 416 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.55 |
| Median 10dB Center Frequency [kHz] | 7.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (6.77 - 8.36) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.57 (5.57 - 9.69) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 21) |
Time: 2024-08-30 04:24UTC to 2024-08-30 04:30UTC
Event contains 1204 original clicks, 602 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 456 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.55 |
| Median 10dB Center Frequency [kHz] | 7.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (6.78 - 8.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.24 ( 5.4 - 10.2) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-30 04:30UTC to 2024-08-30 04:36UTC
Event contains 3000 original clicks, 1500 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1059 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.61 |
| Median 10dB Center Frequency [kHz] | 7.61 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (6.91 - 8.35) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.46 (5.48 - 9.53) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 04:36UTC to 2024-08-30 04:42UTC
Event contains 5814 original clicks, 2907 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2229 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.65 |
| Median 10dB Center Frequency [kHz] | 7.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (6.97 - 8.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.02 (5.45 - 10.1) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 21) |
Time: 2024-08-30 04:42UTC to 2024-08-30 04:48UTC
Event contains 8498 original clicks, 4249 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3194 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.47 |
| Median 10dB Center Frequency [kHz] | 7.55 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (6.69 - 8.23) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.88 (5.22 - 9.71) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 39) |
Time: 2024-08-30 04:48UTC to 2024-08-30 04:54UTC
Event contains 9940 original clicks, 4970 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3621 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.53 |
| Median 10dB Center Frequency [kHz] | 7.65 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 ( 6.8 - 8.26) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.8 ( 5.4 - 9.68) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 3) |
Time: 2024-08-30 04:54UTC to 2024-08-30 05:00UTC
Event contains 11648 original clicks, 5824 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4427 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.56 |
| Median 10dB Center Frequency [kHz] | 7.69 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (6.86 - 8.31) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.8 (5.39 - 9.86) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 13) |
Time: 2024-08-30 05:00UTC to 2024-08-30 05:06UTC
Event contains 12660 original clicks, 6330 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5064 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.59 |
| Median 10dB Center Frequency [kHz] | 7.74 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (6.79 - 8.39) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.05 (5.26 - 10) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-30 05:06UTC to 2024-08-30 05:12UTC
Event contains 11658 original clicks, 5829 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4461 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.97 |
| Median 10dB Center Frequency [kHz] | 8.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (7.26 - 8.72) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.21 (5.61 - 10.5) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-30 05:12UTC to 2024-08-30 05:18UTC
Event contains 13668 original clicks, 6834 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5299 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.02 |
| Median 10dB Center Frequency [kHz] | 8.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 ( 7.2 - 8.77) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.04 (5.63 - 10.4) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-30 05:18UTC to 2024-08-30 05:24UTC
Event contains 13924 original clicks, 6962 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5533 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.96 |
| Median 10dB Center Frequency [kHz] | 8.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (7.17 - 8.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.14 (5.54 - 10.4) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 123) |
Time: 2024-08-30 05:24UTC to 2024-08-30 05:30UTC
Event contains 7660 original clicks, 3830 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2833 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.91 |
| Median 10dB Center Frequency [kHz] | 8.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (7.13 - 8.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.09 (5.41 - 10.3) |
| Median duration [μs] (25-75 percentile) | 2.6 (0 - 190) |
Time: 2024-08-30 05:30UTC to 2024-08-30 05:36UTC
Event contains 2770 original clicks, 1385 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1136 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.18 |
| Median 10dB Center Frequency [kHz] | 8.46 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.47 (7.16 - 9.11) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.04 (5.09 - 11.1) |
| Median duration [μs] (25-75 percentile) | 57 (0 - 1000) |
Time: 2024-08-30 05:36UTC to 2024-08-30 05:42UTC
Event contains 1550 original clicks, 775 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 603 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.42 |
| Median 10dB Center Frequency [kHz] | 8.53 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 (7.53 - 9.11) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.32 (5.26 - 11.5) |
| Median duration [μs] (25-75 percentile) | 115 (8 - 1000) |
Time: 2024-08-30 05:42UTC to 2024-08-30 05:48UTC
Event contains 3900 original clicks, 1950 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1671 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.56 |
| Median 10dB Center Frequency [kHz] | 8.85 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.74 ( 7.4 - 9.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.6 (5.11 - 11.6) |
| Median duration [μs] (25-75 percentile) | 169 (3 - 481) |
Time: 2024-08-30 05:48UTC to 2024-08-30 05:54UTC
Event contains 19770 original clicks, 9885 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8417 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.24 |
| Median 10dB Center Frequency [kHz] | 8.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.74 (7.04 - 9.39) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.73 (4.87 - 11.7) |
| Median duration [μs] (25-75 percentile) | 180 (8 - 1000) |
Time: 2024-08-30 05:54UTC to 2024-08-30 06:00UTC
Event contains 20024 original clicks, 10012 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8700 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.19 |
| Median 10dB Center Frequency [kHz] | 8.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.67 (7.03 - 9.29) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.64 ( 4.9 - 11.6) |
| Median duration [μs] (25-75 percentile) | 193 (8 - 1000) |
Time: 2024-08-30 06:00UTC to 2024-08-30 06:06UTC
Event contains 5208 original clicks, 2604 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2191 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.13 |
| Median 10dB Center Frequency [kHz] | 8.65 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.75 (6.92 - 9.18) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.68 (4.95 - 11.6) |
| Median duration [μs] (25-75 percentile) | 245 (29 - 1101) |
Time: 2024-08-30 06:06UTC to 2024-08-30 06:12UTC
Event contains 5654 original clicks, 2827 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2548 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.89 |
| Median 10dB Center Frequency [kHz] | 9.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2.04 (7.47 - 10.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.92 (5.13 - 12.7) |
| Median duration [μs] (25-75 percentile) | 348 (100 - 1388) |
Time: 2024-08-30 06:12UTC to 2024-08-30 06:18UTC
Event contains 20520 original clicks, 10260 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9203 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.77 |
| Median 10dB Center Frequency [kHz] | 9.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.96 (7.39 - 10.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.54 (5.07 - 12.7) |
| Median duration [μs] (25-75 percentile) | 368 (100 - 1350) |
Time: 2024-08-30 06:18UTC to 2024-08-30 06:24UTC
Event contains 24416 original clicks, 12208 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 11072 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 9.24 |
| Median 10dB Center Frequency [kHz] | 9.59 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2.1 (7.76 - 10.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.06 ( 5.2 - 13.3) |
| Median duration [μs] (25-75 percentile) | 529 (198 - 2443) |
Time: 2024-08-30 06:24UTC to 2024-08-30 06:30UTC
Event contains 24654 original clicks, 12327 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 11085 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 9.14 |
| Median 10dB Center Frequency [kHz] | 9.57 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2.04 (7.75 - 10.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.09 (5.06 - 13.2) |
| Median duration [μs] (25-75 percentile) | 537 (193 - 2456) |
Time: 2024-08-30 06:30UTC to 2024-08-30 06:36UTC
Event contains 24202 original clicks, 12101 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 11113 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.6 |
| Median 3dB Center Frequency [kHz] | 9.48 |
| Median 10dB Center Frequency [kHz] | 9.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2.19 (8.05 - 10.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.08 (5.46 - 13.4) |
| Median duration [μs] (25-75 percentile) | 738 (242 - 2469) |
Time: 2024-08-30 06:36UTC to 2024-08-30 06:42UTC
Event contains 23218 original clicks, 11609 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 10598 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10 |
| Median 3dB Center Frequency [kHz] | 9.85 |
| Median 10dB Center Frequency [kHz] | 10.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2.01 ( 8.4 - 11.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.76 (5.88 - 13.8) |
| Median duration [μs] (25-75 percentile) | 628 (159 - 2458) |
Time: 2024-08-30 06:42UTC to 2024-08-30 06:48UTC
Event contains 23568 original clicks, 11784 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 10647 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10 |
| Median 3dB Center Frequency [kHz] | 9.81 |
| Median 10dB Center Frequency [kHz] | 10.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.91 (8.47 - 11.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.61 (5.87 - 13.5) |
| Median duration [μs] (25-75 percentile) | 542 (150 - 2440) |
Time: 2024-08-30 06:48UTC to 2024-08-30 06:54UTC
Event contains 22576 original clicks, 11288 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 10259 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.4 |
| Median 3dB Center Frequency [kHz] | 10.3 |
| Median 10dB Center Frequency [kHz] | 10.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.85 (8.99 - 11.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.48 (6.38 - 14) |
| Median duration [μs] (25-75 percentile) | 574 (100 - 2458) |
Time: 2024-08-30 06:54UTC to 2024-08-30 07:00UTC
Event contains 20698 original clicks, 10349 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9392 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.8 |
| Median 3dB Center Frequency [kHz] | 10.7 |
| Median 10dB Center Frequency [kHz] | 11.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.85 (9.44 - 11.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.9 (6.75 - 14.6) |
| Median duration [μs] (25-75 percentile) | 756 (156 - 2458) |
Time: 2024-08-30 07:00UTC to 2024-08-30 07:06UTC
Event contains 15368 original clicks, 7684 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6919 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.8 |
| Median 3dB Center Frequency [kHz] | 10.7 |
| Median 10dB Center Frequency [kHz] | 11 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.8 (9.35 - 11.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.75 (6.01 - 14.7) |
| Median duration [μs] (25-75 percentile) | 691 (100 - 2404) |
Time: 2024-08-30 07:06UTC to 2024-08-30 07:12UTC
Event contains 18192 original clicks, 9096 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8061 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.22 |
| Median 10dB Center Frequency [kHz] | 8.68 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.71 (7.04 - 9.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.92 (4.34 - 12.1) |
| Median duration [μs] (25-75 percentile) | 610 (100 - 1986) |
Time: 2024-08-30 07:12UTC to 2024-08-30 07:18UTC
Event contains 21928 original clicks, 10964 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9685 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.15 |
| Median 10dB Center Frequency [kHz] | 7.81 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.79 (5.84 - 8.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.66 (3.95 - 11.2) |
| Median duration [μs] (25-75 percentile) | 503 (100 - 2172) |
Time: 2024-08-30 07:18UTC to 2024-08-30 07:24UTC
Event contains 25608 original clicks, 12804 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 11219 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.92 |
| Median 10dB Center Frequency [kHz] | 7.58 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.88 (5.54 - 8.24) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.86 (3.84 - 10.9) |
| Median duration [μs] (25-75 percentile) | 422 (100 - 1311) |
Time: 2024-08-30 07:24UTC to 2024-08-30 07:30UTC
Event contains 27394 original clicks, 13697 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 12006 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.45 |
| Median 10dB Center Frequency [kHz] | 7.25 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.85 (5.13 - 7.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.69 (3.66 - 10.4) |
| Median duration [μs] (25-75 percentile) | 391 (115 - 1212) |
Time: 2024-08-30 07:30UTC to 2024-08-30 07:36UTC
Event contains 27276 original clicks, 13638 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 11859 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.29 |
| Median 10dB Center Frequency [kHz] | 6.98 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.79 (5.01 - 7.46) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.44 (3.58 - 10.1) |
| Median duration [μs] (25-75 percentile) | 360 (115 - 1000) |
Time: 2024-08-30 07:36UTC to 2024-08-30 07:42UTC
Event contains 26610 original clicks, 13305 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 11391 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.09 |
| Median 10dB Center Frequency [kHz] | 6.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.77 (4.91 - 7.26) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.4 (3.52 - 9.88) |
| Median duration [μs] (25-75 percentile) | 313 (109 - 1000) |
Time: 2024-08-30 07:42UTC to 2024-08-30 07:48UTC
Event contains 27060 original clicks, 13530 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 11596 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.12 |
| Median 10dB Center Frequency [kHz] | 6.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.8 (4.94 - 7.25) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.38 (3.58 - 9.78) |
| Median duration [μs] (25-75 percentile) | 297 (102 - 1000) |
Time: 2024-08-30 07:48UTC to 2024-08-30 07:54UTC
Event contains 26556 original clicks, 13278 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 11264 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.04 |
| Median 10dB Center Frequency [kHz] | 6.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.78 (4.89 - 7.12) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.27 (3.58 - 9.57) |
| Median duration [μs] (25-75 percentile) | 258 (100 - 1000) |
Time: 2024-08-30 07:54UTC to 2024-08-30 08:00UTC
Event contains 24472 original clicks, 12236 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 10206 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.97 |
| Median 10dB Center Frequency [kHz] | 6.64 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.85 ( 4.8 - 7.09) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.29 (3.56 - 9.45) |
| Median duration [μs] (25-75 percentile) | 227 (100 - 490) |
Time: 2024-08-30 08:00UTC to 2024-08-30 08:06UTC
Event contains 22770 original clicks, 11385 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8965 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.75 |
| Median 10dB Center Frequency [kHz] | 6.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.71 (4.67 - 6.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.02 (3.47 - 9.06) |
| Median duration [μs] (25-75 percentile) | 141 (18 - 368) |
Time: 2024-08-30 15:24UTC to 2024-08-30 15:30UTC
Event contains 1150 original clicks, 575 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 275 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.02 |
| Median 10dB Center Frequency [kHz] | 7.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (6.12 - 7.77) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.86 (4.41 - 10.2) |
| Median duration [μs] (25-75 percentile) | 86 (16 - 398) |
# clean up the event table
evTable <- evTable[evTable$keep == TRUE,]
evTable <- subset(evTable, select = -keep)
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
paste0('eventTable_', params$mission, '_',
params$drift, '_', Sys.Date(),'.csv')))
#dbDisconnect(dbFile)
After additional filtering based on median peak frequency, 231 events events of 1825 original events remain.